@charset "utf-8";
/* CSS Document */
body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #FFFFFF;
            color: #333;
            line-height: 1.6;
        }
     .header h1 {
            margin: 0;
            font-size: 2.5rem;
			padding: 0px 10px
        }

        .intro-text {
            text-align: center;
            margin: 30px 0;
            padding: 0 20px;
        }

        .intro-text p {
            font-size: 1.2rem;
        }

        section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .event-type {
            display: -webkit-box; /* Old Safari */
            display: -ms-flexbox; /* IE 10 */
            display: flex; /* Standard */
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 50px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .event-type img {
            flex: 1 1 40%;
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 8px 0 0 8px;
            object-fit: cover;
        }

        .event-text {
            flex: 1 1 60%;
            padding: 20px;
            box-sizing: border-box;
        }

        .event-text h3 {
             color: #1E2022;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .event-text p {
            margin: 10px 0;
        }

        /* Responsive layout for smaller screens */
        @media (max-width: 768px) {
            .event-type {
                flex-direction: column; /* Stack items vertically */
            }

            .event-type img {
                width: 100%; /* Image now spans full width */
                border-radius: 0 0 8px 8px;
            }

            .event-text {
                padding: 20px 15px; /* Padding adjustment for smaller screens */
            }
        }

        /* Responsive YouTube Video */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* Aspect ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            margin: 40px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .cta {
    text-align: center;
    margin: 40px 0;
			
}

.cta a {
     background-color: #1E2022;
    color: white;
    padding: 15px 20px; /* Reduced horizontal padding for smaller screens */
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Ensure it behaves like a button */
    width: 90%; /* Make the button take 90% of the container width */
    max-width: 300px; /* Set a maximum width for larger screens */
}

.cta a:hover {
    background-color: #0056b3;
}

        